% This is the Lilypond source for Delia Derbyshire's score fragments
% "Hatch End 1154", created by Martin Guy <martinwguy@gmail.com> 2021-06-27
% For further info see http://wikidelia.net/wiki/Hatch_End_1154

% The first line is a variation on Stravinsky's "Berceuse",
% The second line is a variation on the finale of Stravinsky's "The Firebird"
% The third line may be a freer variation on the second.

\version "2.18.2"

\header {
 title = "Hatch End 1154"
 composer = "Delia Derbyshire"
 tagline = "Typeset from Delia's score with Lilypond by Martin Guy. See http://wikidelia-net/wiki/Hatch_End_1154"
}

global = {
  % Print accidentals on all sharp/flat notes and nothing on naturals.
  % This seems to be the style in which Delia wrote the score.
  \accidentalStyle forget
  \key c \major
}

Melody = \new Voice \relative c' {
  \time 4/4
  g4 bes2 aes8 c | g g b g c2 | g4 d'4. des8 c aes | c cis \times 2/3 { d des c } c2 |
  \time 5/4
  g'4 f e8 g( d4) c | f e d8 f e c d4 |
  \time 4/4
  g,4 g'4. f8 e d16 f | e4 d4. e8 d8. a16 | g2 r8 f'8 e d16 e | a,4 g ~ g16 c e f g8. a16 | b1
  c,1 < f bes ees aes des > < e aes c e ges >
}

\paper {
  % Don't indent the first line of the score
  indent = #0
}

\score {
 \new Staff {
  \global
  \clef treble
  \tempo 4=120	% Unknown tempo; default of 60 sound ponderous
  \new Voice { \Melody }
 }
 \midi {}
 \layout {}
}
